# This is a BitKeeper generated patch for the following project: # Project Name: Linux kernel tree # This patch format is intended for GNU patch command version 2.5 or higher. # This patch includes the following deltas: # ChangeSet 1.1334 -> 1.1335 # kernel/printk.c 1.26 -> 1.27 # # The following is the BitKeeper ChangeSet Log # -------------------------------------------- # 03/06/18 chadt@sgi.com 1.1335 # [PATCH] ia64: early_printk for SGI SN2 # # -------------------------------------------- # diff -Nru a/kernel/printk.c b/kernel/printk.c --- a/kernel/printk.c Fri Jun 20 00:38:17 2003 +++ b/kernel/printk.c Fri Jun 20 00:38:17 2003 @@ -784,6 +784,10 @@ # endif /* CONFIG_IA64_EARLY_PRINTK_UART */ +#ifdef CONFIG_IA64_EARLY_PRINTK_SGI_SN +extern int sn_sal_console_out(const char *str, int len); +#endif + void early_printk(const char *str, size_t len) { #ifdef CONFIG_IA64_EARLY_PRINTK_UART @@ -791,6 +795,9 @@ #endif #ifdef CONFIG_IA64_EARLY_PRINTK_VGA early_printk_vga(str, len); +#endif +#ifdef CONFIG_IA64_EARLY_PRINTK_SGI_SN + sn_sal_console_out(str, len); #endif }